.account-layout {
    display: grid;
    width: 100%;
    min-width: 0;
    gap: 12px;
}

.account-sidebar {
    min-width: 0;
}

.account-shell-nav {
    display: grid;
    gap: 6px;
    min-width: 0;
}

.account-shell-nav__section {
    min-width: 0;
    padding: 6px;
    border: 1px solid var(--account-soft-line, var(--line));
    border-radius: 14px;
    background: rgba(255, 253, 247, .84);
    box-shadow: var(--account-soft-shadow, 0 10px 22px rgba(27, 29, 24, .045));
}

.account-shell-nav__title {
    margin: 1px 6px 6px;
    color: var(--brand);
    font-size: .62rem;
    font-weight: 900;
    letter-spacing: 0;
    line-height: 1;
    text-transform: uppercase;
}

.account-shell-nav__links {
    display: flex;
    gap: 4px;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scrollbar-width: thin;
}

.account-shell-nav__links a {
    flex: 0 0 auto;
    display: inline-flex;
    min-height: 34px;
    align-items: center;
    gap: 6px;
    padding: 0 9px;
    border-radius: 10px;
    color: #4E574F;
    font-size: .76rem;
    font-weight: 800;
    white-space: nowrap;
}

.account-shell-nav__links a.is-active {
    background: rgba(36, 90, 59, .1);
    color: var(--brand);
}

.account-shell-nav__links a:hover {
    background: rgba(223, 232, 220, .48);
    text-decoration: none;
}

.side-nav {
    display: flex;
    gap: var(--space-2);
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--surface);
    padding: 8px;
    scrollbar-width: thin;
}

.side-nav a {
    flex: 0 0 auto;
    min-height: var(--tap-size);
    display: inline-flex;
    align-items: center;
    border-radius: 6px;
    color: var(--text);
    padding: 0 12px;
    white-space: nowrap;
}

.side-nav a:hover {
    background: var(--surface-muted);
    text-decoration: none;
}

.account-content {
    min-width: 0;
}

.summary-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 12rem), 1fr));
    gap: var(--space-4);
}

.summary-grid dt {
    color: var(--muted);
    font-size: .9rem;
}

.summary-grid dd {
    margin: .25rem 0 0;
    font-weight: 600;
    overflow-wrap: anywhere;
}

.account-summary-head {
    display: grid;
    gap: 12px;
    margin-bottom: 18px;
}

.account-summary-head h1 {
    margin: 0;
}

.account-logout-button {
    display: inline-flex;
    width: 100%;
    min-height: 44px;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border: 1px solid rgba(200, 97, 56, .22);
    border-radius: 10px;
    background: linear-gradient(135deg, rgba(255, 248, 236, .92), rgba(255, 253, 247, .84));
    color: var(--accent-strong);
    font-size: .88rem;
    font-weight: 800;
    box-shadow: 0 10px 22px rgba(27, 29, 24, .045);
    transition: transform 160ms ease, box-shadow 160ms ease;
}

.account-logout-button:hover {
    transform: translateY(-1px);
    box-shadow: 0 12px 26px rgba(27, 29, 24, .06);
}

.account-page {
    --hp-orange: var(--accent);
    --hp-space-1: 4px;
    --hp-space-2: 8px;
    --hp-font-xs: .58rem;
    --hp-icon-sm: 22px;
    --hp-bottom-nav-height: 62px;
    --account-page-x: clamp(10px, 3.6vw, 18px);
    --account-card-radius: 12px;
    --account-soft-line: rgba(223, 212, 195, .72);
    --account-soft-shadow: 0 8px 18px rgba(27, 29, 24, .045);
    background:
        radial-gradient(circle at 50% 0, rgba(200, 97, 56, .055), transparent 28%),
        linear-gradient(180deg, #FFFDF7 0%, #FFF9EF 48%, #F8F4EE 100%);
}

.account-page .page-shell {
    width: 100%;
    overflow-x: hidden;
    margin: 0;
    padding: 0 0 calc(var(--hp-bottom-nav-height) + env(safe-area-inset-bottom));
}

.account-page .site-footer {
    display: none;
}

.account-dashboard {
    display: grid;
    min-width: 0;
    gap: 10px;
    width: min(100%, 760px);
    margin-inline: auto;
    padding: 10px var(--account-page-x) 18px;
}

.account-profile {
    display: grid;
    grid-template-columns: 48px minmax(0, 1fr);
    gap: 8px;
    align-items: center;
}

.account-profile__avatar {
    display: inline-flex;
    width: 48px;
    height: 48px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 22%, rgba(255, 253, 247, .96), rgba(200, 97, 56, .13));
    color: var(--accent-strong);
    font-size: .92rem;
    font-weight: 900;
    letter-spacing: 0;
}

.account-profile__identity {
    display: grid;
    min-width: 0;
    gap: 3px;
}

.account-profile__identity h1 {
    overflow: hidden;
    margin: 0;
    color: var(--text);
    font-size: clamp(1.08rem, 5vw, 1.45rem);
    font-weight: 900;
    line-height: 1.02;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.account-profile__identity p {
    margin: 0;
    color: #626A62;
    font-size: .72rem;
    font-weight: 720;
    line-height: 1.1;
}

.account-profile__location {
    display: inline-flex;
    min-width: 0;
    align-items: center;
    gap: 4px;
    color: var(--brand);
    overflow: hidden;
    font-size: .68rem;
    font-weight: 760;
    line-height: 1.1;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.account-profile__location .ui-icon {
    flex: 0 0 auto;
}

.account-profile__edit {
    grid-column: 2;
    justify-self: start;
    display: inline-flex;
    min-height: 26px;
    align-items: center;
    gap: 6px;
    padding: 0 9px;
    border: 1px solid rgba(47, 54, 53, .42);
    border-radius: 999px;
    color: var(--text);
    font-size: .62rem;
    font-weight: 800;
}

.account-profile__edit span {
    display: inline;
}

.account-profile__edit:hover,
.account-promo-card:hover,
.account-row-card:hover,
.account-list-row:hover,
.account-metric-tile:hover {
    text-decoration: none;
}

.account-promo-card,
.account-row-card,
.account-list-card,
.account-metric-grid {
    border: 1px solid var(--account-soft-line);
    border-radius: var(--account-card-radius);
    background: rgba(255, 253, 247, .82);
    box-shadow: var(--account-soft-shadow);
}

.account-promo-card {
    display: grid;
    grid-template-columns: 34px minmax(0, 1fr) 14px;
    gap: 8px;
    align-items: center;
    min-height: 64px;
    padding: 9px;
    color: var(--text);
}

.account-promo-card__copy,
.account-row-card__copy {
    display: grid;
    min-width: 0;
    gap: 3px;
}

.account-promo-card__copy strong,
.account-row-card__copy strong {
    color: var(--text);
    font-size: .76rem;
    font-weight: 900;
    line-height: 1.12;
}

.account-promo-card__copy small,
.account-row-card__copy small {
    color: #626A62;
    font-size: .62rem;
    font-weight: 610;
    line-height: 1.34;
}

.account-section {
    display: grid;
    gap: 6px;
}

.account-section-heading {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 8px;
    align-items: end;
}

.account-section-heading h2 {
    margin: 0;
    color: var(--text);
    font-size: .86rem;
    font-weight: 900;
    line-height: 1.04;
}

.account-section-heading a {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: var(--accent);
    min-height: 24px;
    font-size: .62rem;
    font-weight: 800;
    white-space: nowrap;
}

.account-section-heading--solo {
    display: block;
}

.account-metric-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    overflow: hidden;
}

.account-metric-tile {
    display: grid;
    min-width: 0;
    min-height: 62px;
    align-content: center;
    justify-items: center;
    gap: 4px;
    padding: 7px 4px;
    color: var(--text);
    border-top: 1px solid rgba(223, 212, 195, .62);
    border-left: 0;
}

.account-metric-tile:first-child {
    border-left: 0;
}

.account-metric-tile:nth-child(-n + 2) {
    border-top: 0;
}

.account-metric-tile:nth-child(2n) {
    border-left: 1px solid rgba(223, 212, 195, .62);
}

.account-metric-tile strong {
    max-width: 11ch;
    color: var(--text);
    font-size: .62rem;
    font-weight: 760;
    line-height: 1.12;
    text-align: center;
}

.account-metric-tile > span:last-child {
    color: var(--accent);
    font-size: 1rem;
    font-weight: 900;
    line-height: 1;
}

.account-token {
    display: inline-flex;
    width: 32px;
    height: 32px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.account-token--orange {
    background: rgba(200, 97, 56, .12);
    color: var(--accent-strong);
}

.account-token--green {
    background: rgba(36, 90, 59, .12);
    color: var(--brand);
}

.account-row-card {
    display: grid;
    grid-template-columns: 34px minmax(0, 1fr) 14px;
    gap: 8px;
    align-items: center;
    min-height: 58px;
    padding: 9px;
    color: var(--text);
}

.account-list-card {
    display: grid;
    overflow: hidden;
}

.account-list-row {
    display: grid;
    grid-template-columns: 22px minmax(0, 1fr) auto 14px;
    gap: 7px;
    align-items: center;
    min-height: 42px;
    padding: 0 9px;
    border-top: 1px solid rgba(223, 212, 195, .62);
    color: var(--text);
    font-size: .72rem;
    font-weight: 720;
}

.account-list-row__content {
    display: grid;
    min-width: 0;
    gap: 2px;
}

.account-list-row__content > span,
.account-list-row__content > small {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.account-list-row__content > small {
    color: #6D746D;
    font-size: .58rem;
    font-weight: 700;
}

.account-list-row > strong {
    color: var(--accent-strong);
    font-size: .64rem;
    font-weight: 900;
    white-space: nowrap;
}

.account-list-row:first-child {
    border-top: 0;
}

.account-list-row > .ui-icon:first-child {
    color: #2F3635;
}

.account-reservation-summary {
    display: grid;
    grid-template-columns: 22px minmax(0, 1fr) auto;
    gap: 7px;
    align-items: center;
    min-width: 0;
    padding: 7px 9px 8px;
    border-top: 1px dashed rgba(223, 212, 195, .76);
    background: rgba(223, 232, 220, .24);
    color: var(--text);
}

.account-reservation-summary > span {
    display: grid;
    min-width: 0;
    gap: 2px;
}

.account-reservation-summary strong {
    overflow: hidden;
    font-size: .68rem;
    font-weight: 900;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.account-reservation-summary small {
    overflow: hidden;
    color: var(--muted);
    font-size: .56rem;
    font-weight: 720;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.account-reservation-summary__state {
    justify-items: end;
}

.account-reservation-summary__state em {
    color: var(--brand);
    font-size: .58rem;
    font-style: normal;
    font-weight: 900;
}

.account-dashboard__logout {
    display: grid;
}

.account-dashboard__logout .account-logout-button {
    min-height: 36px;
    border-color: rgba(200, 97, 56, .26);
    border-radius: 9px;
    background: rgba(255, 253, 247, .82);
    font-size: .74rem;
}

.pro-layout {
    display: block;
    min-width: 0;
    width: 100%;
}

.pro-content {
    min-width: 0;
}

.pro-dashboard {
    gap: 12px;
}

.pro-header {
    display: grid;
    gap: 8px;
    align-items: center;
}

.pro-header h1,
.pro-header p {
    margin: 0;
}

.pro-header h1 {
    color: var(--text);
    font-size: 1.18rem;
    font-weight: 900;
    line-height: 1.08;
}

.pro-header p:not(.pro-eyebrow) {
    margin-top: 3px;
    color: #626A62;
    font-size: .72rem;
    font-weight: 620;
    line-height: 1.28;
}

.pro-eyebrow {
    color: var(--brand);
    font-size: .6rem;
    font-weight: 900;
    letter-spacing: 0;
    text-transform: uppercase;
}

.pro-header__action {
    display: inline-flex;
    width: fit-content;
    min-height: 34px;
    align-items: center;
    gap: 8px;
    padding: 0 12px;
    border: 1px solid rgba(36, 90, 59, .2);
    border-radius: 8px;
    background: rgba(244, 249, 240, .72);
    color: var(--brand);
    font-size: .7rem;
    font-weight: 800;
}

.pro-header__action:hover {
    text-decoration: none;
}

.pro-status-badge {
    min-height: 26px;
    padding-inline: 8px;
    border-radius: 7px;
    font-size: .62rem;
}

.pro-card {
    border: 1px solid var(--account-soft-line);
    border-radius: var(--account-card-radius);
    background: rgba(255, 253, 247, .84);
    box-shadow: var(--account-soft-shadow);
}

.pro-company-card,
.pro-verification-card {
    display: grid;
    grid-template-columns: 48px minmax(0, 1fr);
    gap: 14px;
    align-items: center;
    min-height: 96px;
    padding: 14px;
}

.pro-company-card h2,
.pro-verification-card h2 {
    margin: 0;
    color: var(--text);
    font-size: 1.02rem;
    font-weight: 900;
    line-height: 1.1;
}

.pro-company-card p,
.pro-verification-card p {
    margin: 5px 0 0;
    color: #626A62;
    font-size: .78rem;
    font-weight: 650;
    line-height: 1.3;
}

.pro-company-card > a {
    grid-column: 2;
    justify-self: start;
    display: inline-flex;
    min-height: 32px;
    align-items: center;
    gap: 7px;
    padding: 0 12px;
    border: 1px solid rgba(47, 54, 53, .28);
    border-radius: 999px;
    color: var(--text);
    font-size: .76rem;
    font-weight: 800;
}

.pro-company-card > a:hover {
    text-decoration: none;
}

.pro-steps {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    padding: 12px;
}

.pro-step {
    display: inline-flex;
    min-width: 0;
    min-height: 34px;
    align-items: center;
    gap: 7px;
    padding: 0 9px;
    border-radius: 999px;
    background: rgba(47, 54, 53, .055);
    color: #626A62;
    font-size: .7rem;
    font-weight: 780;
    line-height: 1;
}

.pro-step .ui-icon {
    opacity: .45;
}

.pro-step.is-done {
    background: rgba(36, 90, 59, .12);
    color: var(--brand);
}

.pro-step.is-done .ui-icon {
    opacity: 1;
}

.pro-metric-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.pro-form-card {
    padding: 16px;
}

.pro-form-card .form-stack {
    gap: 14px;
}

.pro-form-card .form-actions {
    margin-top: 4px;
}

.pro-onboarding-vitrine {
    gap: 12px;
}

.pro-onboarding-vitrine__status {
    min-height: 34px;
    display: inline-flex;
    width: fit-content;
    max-width: 100%;
    align-items: center;
    gap: 6px;
    margin: 0;
    padding: 0 10px;
    border-radius: 999px;
    border: 1px solid #C8D6C5;
    background: rgba(244, 249, 240, .8);
    color: #2B6A45;
    font-size: .68rem;
    font-weight: 820;
}

.pro-empty {
    --catalog-empty-padding: 22px 16px;
    --catalog-empty-border: transparent;
    --catalog-empty-radius: 0;
    --catalog-empty-bg: transparent;
    --catalog-empty-shadow: none;
    --catalog-empty-icon-bg: rgba(200, 97, 56, .12);
    --catalog-empty-icon-color: var(--accent);
    --catalog-empty-title-color: var(--text);
    --catalog-empty-title-size: .95rem;
    --catalog-empty-text-color: #626A62;
    --catalog-empty-text-size: .78rem;
}

.pro-enrichment,
.pro-enrichment__list,
.pro-enrichment-suggestion,
.pro-enrichment-suggestion form {
    display: grid;
    gap: 12px;
}

.pro-enrichment__intro,
.pro-enrichment__status,
.pro-enrichment__empty,
.pro-enrichment-suggestion {
    padding: 14px;
}

.pro-enrichment__intro,
.pro-enrichment__status,
.pro-enrichment-suggestion > header {
    display: flex;
    min-width: 0;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.pro-enrichment h2,
.pro-enrichment p {
    margin: 0;
}

.pro-enrichment h2 {
    font-size: .92rem;
}

.pro-enrichment p,
.pro-enrichment__status,
.pro-enrichment-suggestion small {
    color: #626A62;
    font-size: .76rem;
    line-height: 1.4;
}

.pro-enrichment__notice {
    padding: 10px 12px;
    border: 1px solid #E3C99D;
    border-radius: var(--account-card-radius);
    background: #FFF8E9;
}

.pro-enrichment-suggestion textarea {
    width: 100%;
    min-height: 92px;
    resize: vertical;
}

.pro-enrichment-suggestion__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

@media (min-width: 760px) {
    .pro-enrichment__list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

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

.address-form-panel__head {
    display: grid;
    gap: 6px;
}

.address-form-panel__head h2 {
    margin: 0;
    font-size: 1.2rem;
    font-weight: 900;
    line-height: 1.08;
}

.address-form-panel__head p:last-child,
.section-heading p {
    max-width: 58ch;
    margin: 0;
    color: #626A62;
    font-size: .84rem;
    font-weight: 560;
    line-height: 1.38;
}

.address-form {
    gap: 14px;
}

.address-form__grid {
    display: grid;
    gap: 14px;
}

.address-autocomplete {
    position: relative;
}

.address-autocomplete__results {
    position: absolute;
    z-index: 20;
    inset: calc(100% + 6px) 0 auto;
    display: grid;
    gap: 4px;
    max-height: 220px;
    overflow: auto;
    padding: 6px;
    border: 1px solid rgba(32, 68, 45, .14);
    border-radius: 14px;
    background: rgba(255, 253, 247, .98);
    box-shadow: 0 18px 40px rgba(35, 28, 18, .14);
}

.ban-result-item {
    width: 100%;
    padding: 10px 12px;
    border: 0;
    border-radius: 10px;
    color: #20251F;
    font: inherit;
    font-size: .84rem;
    font-weight: 760;
    line-height: 1.25;
    text-align: left;
    background: transparent;
    cursor: pointer;
}

.ban-result-item:hover,
.ban-result-item:focus-visible {
    outline: none;
    background: rgba(232, 240, 223, .72);
}

.address-form__toggle {
    display: flex;
    min-height: 48px;
    align-items: center;
    gap: 10px;
    padding: 0 12px;
    border: 1px solid rgba(32, 68, 45, .13);
    border-radius: 12px;
    color: #20251F;
    font-size: .84rem;
    font-weight: 760;
    background: rgba(255, 253, 247, .72);
}

.address-form__toggle input {
    width: 18px;
    height: 18px;
    accent-color: var(--accent);
}

.address-card__badges {
    display: inline-flex;
    flex-wrap: wrap;
    gap: 6px;
    justify-content: flex-end;
}

@media (min-width: 680px) {
    .address-form__grid--compact {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

.auth-mobile-page {
    --auth-ink: var(--text);
    --auth-muted: var(--muted);
    --auth-line: rgba(223, 212, 195, .94);
    --auth-orange: var(--accent);
    --auth-orange-strong: var(--accent-strong);
    --auth-green: var(--brand);
    --auth-page-x: 28px;
    --auth-bottom-nav-height: 62px;
    --hp-orange: var(--accent);
    --hp-space-1: 4px;
    --hp-space-2: 8px;
    --hp-font-xs: .58rem;
    --hp-icon-sm: 22px;
    --hp-bottom-nav-height: var(--auth-bottom-nav-height);
    min-height: 100svh;
    background:
        radial-gradient(circle at 50% 0, rgba(200, 97, 56, .065), transparent 30%),
        linear-gradient(180deg, #FFFDF7 0%, #FFF8EC 48%, #F7F4EF 100%);
}

.auth-mobile-page .page-shell {
    width: 100%;
    min-height: auto;
    margin: 0;
    padding: 0 0 calc(var(--auth-bottom-nav-height) + env(safe-area-inset-bottom));
}

.auth-login {
    display: grid;
    gap: 24px;
    width: 100%;
    max-width: 460px;
    margin-inline: auto;
    padding: 24px var(--auth-page-x) 28px;
}

.auth-login__top {
    position: relative;
    display: grid;
    min-height: 118px;
    align-items: start;
    justify-items: center;
}

.auth-login__back {
    position: absolute;
    top: 42px;
    left: 0;
    display: inline-flex;
    width: 34px;
    height: 34px;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    color: var(--auth-green);
}

.auth-login__brand {
    align-self: end;
    display: inline-flex;
}

.auth-login__brand .heop-logo {
    width: 145px;
}

.auth-login__intro {
    display: grid;
    gap: 8px;
    justify-items: center;
    text-align: center;
}

.auth-login__intro h1 {
    margin: 0;
    color: var(--auth-ink);
    font-size: clamp(1.56rem, 7vw, 1.92rem);
    font-weight: 900;
    line-height: 1.05;
}

.auth-login__intro p {
    margin: 0;
    color: var(--auth-muted);
    font-size: .96rem;
    font-weight: 560;
    line-height: 1.3;
}

.auth-login__switch {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 52px;
    overflow: hidden;
    border: 1px solid var(--auth-line);
    border-radius: 12px;
    background: rgba(255, 253, 247, .76);
}

.auth-login__switch-option {
    display: inline-flex;
    min-width: 0;
    min-height: 52px;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 0 8px;
    border: 0;
    border-radius: 0;
    background: transparent;
    color: var(--auth-green);
    font-size: .94rem;
    font-weight: 800;
}

.auth-login__switch-option:first-child {
    border-right: 1px solid var(--auth-line);
}

.auth-login__switch-option.is-active {
    color: var(--auth-orange-strong);
    background: linear-gradient(180deg, rgba(255, 248, 236, .86), rgba(255, 253, 247, .42));
}

.auth-login__form {
    display: grid;
    gap: 22px;
}

.auth-login__errors,
.auth-field__error {
    padding: 10px 12px;
    border: 1px solid rgba(200, 97, 56, .24);
    border-radius: 10px;
    background: rgba(200, 97, 56, .08);
    color: var(--auth-orange-strong);
    font-size: .72rem;
    font-weight: 720;
}

.auth-login__errors ul,
.auth-field__error ul {
    margin: 0;
    padding-left: 16px;
}

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

.auth-field__label {
    color: var(--auth-ink);
    font-size: 1rem;
    font-weight: 800;
    line-height: 1.15;
}

.auth-field__control {
    position: relative;
    display: flex;
    min-height: 56px;
    align-items: center;
    border: 1px solid var(--auth-line);
    border-radius: 10px;
    background: rgba(255, 253, 247, .82);
    box-shadow: inset 0 0 0 1px rgba(255, 253, 247, .62);
}

.auth-field__icon {
    position: absolute;
    left: 14px;
    width: 22px;
    height: 22px;
    color: var(--auth-ink);
    pointer-events: none;
}

.auth-field__control input,
.auth-field__control select {
    width: 100%;
    min-height: 54px;
    padding: 0 48px 0 50px;
    border: 0;
    outline: 0;
    background: transparent;
    color: var(--auth-ink);
    font-size: .98rem;
    font-weight: 620;
}

.auth-field__control select {
    appearance: auto;
    padding-right: 16px;
    cursor: pointer;
}

.auth-field__control input::placeholder {
    color: var(--auth-muted);
}

.auth-mobile-page .assistant-widget {
    display: none;
}

.auth-field__toggle {
    position: absolute;
    right: 10px;
    width: 36px;
    height: 36px;
    min-height: 36px;
    padding: 0;
    border: 0;
    border-radius: 999px;
    background: transparent;
    color: var(--auth-ink);
}

.auth-login__forgot {
    justify-self: end;
    color: var(--auth-green);
    font-size: .86rem;
    font-weight: 780;
}

.auth-login__submit {
    min-height: 56px;
    margin-top: 8px;
    border: 0;
    border-radius: 8px;
    background: linear-gradient(135deg, var(--auth-orange-strong), var(--auth-orange));
    color: #FFFDF7;
    font-size: 1.1rem;
    font-weight: 800;
    box-shadow: 0 14px 30px rgba(200, 97, 56, .24);
}

.auth-login__divider {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 14px;
    align-items: center;
    color: var(--auth-muted);
    font-size: .9rem;
    font-weight: 800;
}

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

.auth-login__google {
    display: inline-flex;
    min-height: 56px;
    align-items: center;
    justify-content: center;
    gap: 14px;
    border: 1px solid var(--auth-line);
    border-radius: 10px;
    background: rgba(255, 253, 247, .78);
    color: var(--auth-ink);
    font-size: 1rem;
    font-weight: 800;
}

.auth-login__google:hover,
.auth-login__signup:hover {
    text-decoration: none;
}

.auth-login__google-mark {
    display: inline-flex;
    width: 22px;
    height: 22px;
    align-items: center;
    justify-content: center;
    color: var(--auth-green);
    font-weight: 900;
}

.auth-login__signup {
    display: grid;
    grid-template-columns: 42px minmax(0, 1fr) 14px;
    gap: 12px;
    align-items: center;
    min-height: 78px;
    padding: 12px;
    border-radius: 14px;
    background:
        linear-gradient(90deg, rgba(223, 232, 220, .78), rgba(255, 253, 247, .82));
    color: var(--auth-ink);
    box-shadow: 0 10px 24px rgba(27, 29, 24, .055);
}

.auth-login__signup-icon {
    display: inline-flex;
    width: 42px;
    height: 42px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(223, 232, 220, .9);
    color: var(--auth-green);
}

.auth-login__signup-copy {
    display: grid;
    min-width: 0;
    gap: 2px;
}

.auth-login__signup-copy strong {
    overflow: hidden;
    font-size: .92rem;
    font-weight: 900;
    line-height: 1.1;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.auth-login__signup-copy small {
    overflow: hidden;
    color: var(--auth-muted);
    font-size: .74rem;
    font-weight: 620;
    line-height: 1.2;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.auth-login__signup-action {
    display: none;
    color: var(--auth-green);
    font-size: .82rem;
    font-weight: 800;
    white-space: nowrap;
}

.auth-login__signup-chevron {
    color: var(--auth-green);
}

.auth-reset {
    gap: 30px;
}

.auth-reset__top {
    min-height: 126px;
}

.auth-reset__intro {
    gap: 10px;
}

.auth-reset__intro h1 {
    font-size: clamp(1.6rem, 7.4vw, 2rem);
}

.auth-reset__intro p {
    max-width: 29ch;
    color: #6A716A;
    font-size: .94rem;
    font-weight: 610;
    line-height: 1.42;
}

.auth-reset__form {
    gap: 30px;
}

.auth-reset__submit {
    min-height: 58px;
    margin-top: 2px;
    padding-inline: 14px;
    font-size: 1rem;
}

.auth-info-card {
    display: grid;
    grid-template-columns: 48px minmax(0, 1fr);
    gap: 14px;
    align-items: center;
    min-height: 86px;
    padding: 14px;
    border: 1px solid rgba(223, 212, 195, .42);
    border-radius: 14px;
    background: linear-gradient(90deg, rgba(223, 232, 220, .52), rgba(255, 253, 247, .78));
    color: var(--auth-ink);
    box-shadow: 0 10px 24px rgba(27, 29, 24, .045);
}

.auth-info-card:hover {
    text-decoration: none;
}

.auth-info-card__icon {
    display: inline-flex;
    width: 48px;
    height: 48px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(223, 232, 220, .9);
    color: var(--auth-green);
}

.auth-info-card__icon--orange {
    background: rgba(200, 97, 56, .12);
    color: var(--auth-orange-strong);
}

.auth-info-card__copy {
    display: grid;
    min-width: 0;
    gap: 4px;
}

.auth-info-card__copy strong {
    color: var(--auth-ink);
    font-size: .98rem;
    font-weight: 900;
    line-height: 1.1;
}

.auth-info-card__copy small {
    color: var(--auth-muted);
    font-size: .82rem;
    font-weight: 620;
    line-height: 1.34;
}

.auth-reset__return {
    display: inline-flex;
    justify-self: center;
    align-items: center;
    gap: 9px;
    color: var(--auth-green);
    font-size: .92rem;
    font-weight: 800;
}

.auth-reset__return:hover {
    text-decoration: none;
}

.auth-info-card--help {
    grid-template-columns: 48px minmax(0, 1fr) auto 16px;
    margin-top: 14px;
    background: linear-gradient(90deg, rgba(255, 248, 236, .86), rgba(255, 253, 247, .78));
}

.auth-info-card__action {
    color: var(--auth-orange-strong);
    font-size: .82rem;
    font-weight: 800;
    white-space: nowrap;
}

.auth-info-card__chevron {
    color: var(--auth-orange-strong);
}

.auth-signup-choice {
    gap: 14px;
    padding-top: calc(10px + env(safe-area-inset-top));
}

.auth-signup-choice__top {
    min-height: 86px;
}

.auth-signup-choice__intro {
    margin-top: -2px;
    gap: 4px;
}

.auth-signup-choice__intro h1 {
    font-size: clamp(1.34rem, 6vw, 1.72rem);
}

.auth-signup-choice__intro p {
    font-size: .78rem;
    line-height: 1.16;
}

.auth-signup-choice__form {
    display: grid;
    gap: 10px;
}

.auth-signup-choice__switch {
    min-height: 42px;
    border-radius: 10px;
}

.auth-signup-choice__switch .auth-login__switch-option {
    min-height: 42px;
    gap: 7px;
    font-size: .78rem;
}

.auth-account-card {
    display: grid;
    gap: 10px;
    justify-items: center;
    min-height: 0;
    padding: 14px 12px 12px;
    border: 1px solid var(--auth-line);
    border-radius: 14px;
    background: rgba(255, 253, 247, .76);
    box-shadow: 0 10px 22px rgba(27, 29, 24, .055);
    transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.auth-account-card.is-professional {
    border-color: rgba(36, 90, 59, .22);
    background: linear-gradient(180deg, rgba(255, 253, 247, .82), rgba(244, 249, 240, .72));
}

.auth-account-card__hero {
    display: inline-flex;
    width: 54px;
    height: 54px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(200, 97, 56, .1);
    color: var(--auth-orange-strong);
}

.auth-account-card.is-professional .auth-account-card__hero {
    background: rgba(36, 90, 59, .12);
    color: var(--auth-green);
}

.auth-account-card__hero .ui-icon {
    width: 28px;
    height: 28px;
}

.auth-account-card h2 {
    margin: 0;
    color: var(--auth-orange-strong);
    font-size: 1.02rem;
    font-weight: 900;
    line-height: 1;
    text-align: center;
}

.auth-account-card.is-professional h2 {
    color: var(--auth-green);
}

.auth-account-card > p {
    max-width: 30ch;
    margin: 0;
    color: #2F332D;
    font-size: .74rem;
    font-weight: 610;
    line-height: 1.22;
    text-align: center;
}

.auth-account-card__benefits {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
    width: 100%;
    margin: 2px 0 0;
    padding: 10px 0 0;
    border-top: 1px solid var(--auth-line);
    list-style: none;
}

.auth-account-card__benefits li {
    display: grid;
    gap: 5px;
    align-items: start;
    justify-items: center;
    text-align: center;
}

.auth-account-card__benefits li > span {
    display: inline-flex;
    width: 32px;
    height: 32px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(200, 97, 56, .1);
    color: var(--auth-orange-strong);
}

.auth-account-card.is-professional .auth-account-card__benefits li > span {
    background: rgba(36, 90, 59, .1);
    color: var(--auth-green);
}

.auth-account-card__benefits strong {
    color: var(--auth-ink);
    font-size: .66rem;
    font-weight: 760;
    line-height: 1.1;
}

.auth-account-card__submit {
    width: 100%;
    min-height: 44px;
    margin-top: 2px;
    border: 0;
    border-radius: 8px;
    background: linear-gradient(135deg, #F03A12, #D93212 52%, #C86138);
    color: #FFFDF7;
    font-size: .84rem;
    font-weight: 800;
    box-shadow: 0 10px 22px rgba(200, 97, 56, .2);
}

.auth-account-card.is-professional .auth-account-card__submit {
    background: linear-gradient(135deg, #245A3B, #174428);
    box-shadow: 0 14px 28px rgba(36, 90, 59, .22);
}

.auth-info-card--security {
    grid-template-columns: 48px minmax(0, 1fr) 16px;
    margin-top: 4px;
}

.auth-signup-choice__login {
    display: flex;
    flex-wrap: wrap;
    gap: 5px 10px;
    justify-content: center;
    margin: 0;
    color: var(--auth-ink);
    font-size: .78rem;
    font-weight: 620;
}

.auth-signup-choice__login a {
    color: var(--auth-orange-strong);
    font-weight: 800;
}

.auth-signup-form {
    gap: 20px;
}

.auth-professional-signup__steps {
    position: relative;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
    width: 100%;
    margin: 0;
    padding: 0;
    list-style: none;
}

.auth-professional-signup__steps::before {
    position: absolute;
    top: 14px;
    right: 16.666%;
    left: 16.666%;
    height: 1px;
    background: var(--auth-line);
    content: "";
}

.auth-professional-signup__steps li {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 5px;
    justify-items: center;
    min-width: 0;
    color: var(--auth-muted);
    font-size: .68rem;
    font-weight: 760;
    text-align: center;
}

.auth-professional-signup__steps span {
    display: inline-flex;
    width: 28px;
    height: 28px;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--auth-line);
    border-radius: 50%;
    background: #FFFDF7;
    color: var(--auth-muted);
}

.auth-professional-signup__steps .is-current,
.auth-professional-signup__steps .is-complete {
    color: var(--auth-green);
}

.auth-professional-signup__steps .is-current span,
.auth-professional-signup__steps .is-complete span {
    border-color: var(--auth-green);
    background: var(--auth-green);
    color: #FFF;
}

.auth-professional-signup__steps .is-current span {
    box-shadow: 0 0 0 4px rgba(36, 90, 59, .1);
    animation: auth-step-arrive 240ms ease both;
}

.auth-signup-form__intro {
    margin-top: -2px;
}

.auth-signup-form__intro h1 {
    font-size: clamp(1.58rem, 7vw, 2rem);
}

.auth-signup-form__type {
    display: grid;
    grid-template-columns: 42px minmax(0, 1fr) 16px;
    gap: 12px;
    align-items: center;
    min-height: 68px;
    padding: 12px;
    border: 1px solid var(--auth-line);
    border-radius: 14px;
    background: rgba(255, 253, 247, .8);
    color: var(--auth-ink);
    box-shadow: 0 10px 24px rgba(27, 29, 24, .05);
}

.auth-signup-form__type:hover {
    text-decoration: none;
}

.auth-signup-form__type-icon {
    display: inline-flex;
    width: 42px;
    height: 42px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(223, 232, 220, .82);
    color: var(--auth-green);
}

.auth-signup-form__type strong,
.auth-signup-form__type small {
    display: block;
    overflow: hidden;
    line-height: 1.12;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.auth-signup-form__type strong {
    color: var(--auth-ink);
    font-size: .94rem;
    font-weight: 900;
}

.auth-signup-form__type small {
    margin-top: 3px;
    color: var(--auth-muted);
    font-size: .74rem;
    font-weight: 660;
}

.auth-signup-form__form {
    gap: 18px;
}

.auth-signup-form__grid {
    display: grid;
    gap: 18px;
}

.auth-signup-form__check {
    display: grid;
    grid-template-columns: 20px minmax(0, 1fr);
    gap: 10px;
    align-items: start;
    color: #555E56;
    font-size: .78rem;
    font-weight: 640;
    line-height: 1.32;
}

.auth-signup-form__check input {
    width: 18px;
    height: 18px;
    margin: 1px 0 0;
    accent-color: var(--auth-orange-strong);
}

.auth-signup-form .auth-login__submit {
    margin-top: 4px;
    font-size: .98rem;
}

.auth-signup-form [aria-busy="true"] {
    opacity: .62;
    cursor: wait;
}

@keyframes auth-step-arrive {
    from {
        opacity: .4;
        transform: scale(.88);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.auth-signup-form__divider {
    margin-block: -2px;
}

.auth-signup-form__social {
    display: grid;
    gap: 10px;
}

.auth-social-button {
    display: inline-grid;
    grid-template-columns: 34px minmax(0, 1fr);
    gap: 12px;
    align-items: center;
    min-height: 52px;
    padding: 0 14px;
    border: 1px solid var(--auth-line);
    border-radius: 12px;
    background: rgba(255, 253, 247, .82);
    color: var(--auth-ink);
    font-size: .9rem;
    font-weight: 800;
    box-shadow: 0 10px 22px rgba(27, 29, 24, .045);
}

.auth-social-button:hover {
    text-decoration: none;
}

.auth-social-button__mark {
    display: inline-flex;
    width: 34px;
    height: 34px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: .78rem;
    font-weight: 900;
    letter-spacing: 0;
}

.auth-social-button__mark--google {
    background: rgba(66, 133, 244, .1);
    color: #4285F4;
}

.auth-social-button__mark--instagram {
    background:
        radial-gradient(circle at 30% 110%, rgba(252, 175, 69, .22), transparent 44%),
        linear-gradient(135deg, rgba(131, 58, 180, .12), rgba(253, 29, 29, .12), rgba(252, 176, 69, .14));
    color: #C13584;
}

.auth-social-button__mark--meta {
    width: 42px;
    border-radius: 999px;
    background: rgba(24, 119, 242, .1);
    color: #1877F2;
    font-size: .62rem;
}

.auth-mobile-page .home-bottom-nav {
    min-height: var(--auth-bottom-nav-height);
}

@media (max-width: 559px) {
    .auth-signup-form-page .auth-signup-form {
        padding-top: 10px;
    }
}

@media (min-width: 375px) {
    .auth-login__signup {
        grid-template-columns: 46px minmax(0, 1fr) auto 16px;
    }

    .auth-login__signup-icon {
        width: 46px;
        height: 46px;
    }

    .auth-login__signup-action {
        display: inline;
    }

    .auth-info-card {
        grid-template-columns: 54px minmax(0, 1fr);
        gap: 16px;
        min-height: 92px;
        padding: 16px;
    }

    .auth-info-card__icon {
        width: 54px;
        height: 54px;
    }

    .auth-info-card--help {
        grid-template-columns: 54px minmax(0, 1fr) auto 16px;
    }

    .auth-signup-form__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px;
    }

    .auth-signup-form__grid .auth-field__label {
        font-size: .9rem;
    }

    .auth-signup-form__grid .auth-field__control input {
        padding-left: 44px;
    }
}

@media (min-width: 560px) {
    .account-layout {
        gap: 16px;
    }

    .account-dashboard {
        width: min(calc(100% - 24px), 900px);
        padding-inline: 12px;
    }

    .account-profile {
        grid-template-columns: 56px minmax(0, 1fr) auto;
        gap: 10px;
    }

    .account-profile__avatar {
        width: 56px;
        height: 56px;
        font-size: 1.05rem;
    }

    .account-profile__identity h1 {
        font-size: 1.55rem;
    }

    .account-metric-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    .account-metric-tile {
        border-top: 0;
        border-left: 1px solid rgba(223, 212, 195, .62);
    }

    .account-metric-tile:first-child {
        border-left: 0;
    }
}

@media (min-width: 860px) {
    .account-layout {
        grid-template-columns: 220px minmax(0, 1fr);
        align-items: start;
        gap: 18px;
        width: min(calc(100vw - 32px), 1320px);
        margin-inline: auto;
    }

    .account-sidebar {
        position: sticky;
        top: 16px;
    }

    .side-nav {
        display: grid;
        overflow: visible;
        padding: 12px;
    }

    .side-nav a {
        width: 100%;
    }

    .account-shell-nav {
        gap: 12px;
    }

    .account-shell-nav__section {
        padding: 10px;
        border-radius: 16px;
    }

    .account-shell-nav__title {
        margin-bottom: 10px;
        font-size: .7rem;
    }

    .account-shell-nav__links {
        display: grid;
        overflow: visible;
    }

    .account-shell-nav__links a {
        width: 100%;
        min-height: 40px;
        padding-inline: 10px;
    }

    .account-summary-head {
        grid-template-columns: minmax(0, 1fr) auto;
        align-items: center;
    }

    .account-logout-button {
        width: auto;
        padding-inline: 16px;
    }

    .account-layout--dashboard .account-content {
        width: 100%;
    }

    .account-dashboard {
        gap: 16px;
        width: 100%;
        max-width: 1040px;
        padding: 18px 0 32px;
    }

    .account-profile {
        grid-template-columns: 68px minmax(0, 1fr) auto;
        gap: 12px;
    }

    .account-profile__avatar {
        width: 68px;
        height: 68px;
        font-size: 1.08rem;
    }

    .account-profile__identity h1 {
        font-size: 1.55rem;
    }

    .account-profile__identity p {
        font-size: .82rem;
    }

    .account-profile__location {
        font-size: .78rem;
    }

    .account-profile__edit {
        grid-column: auto;
        justify-self: end;
        min-height: 34px;
        padding-inline: 13px;
        font-size: .78rem;
    }

    .account-profile__edit span {
        display: inline;
    }

    .account-promo-card {
        grid-template-columns: 42px minmax(0, 1fr) 16px;
        min-height: 78px;
        padding: 12px;
    }

    .account-promo-card__copy strong,
    .account-row-card__copy strong {
        font-size: .9rem;
    }

    .account-promo-card__copy small,
    .account-row-card__copy small {
        font-size: .74rem;
    }

    .account-section-heading h2 {
        font-size: 1.02rem;
    }

    .account-section-heading a {
        font-size: .74rem;
    }

    .account-metric-tile {
        min-height: 76px;
    }

    .account-token {
        width: 36px;
        height: 36px;
    }

    .account-row-card {
        grid-template-columns: 40px minmax(0, 1fr) 16px;
        min-height: 70px;
        padding: 12px;
    }

    .account-list-row {
        min-height: 48px;
        font-size: .82rem;
    }

    .account-list-row__content > small {
        font-size: .66rem;
    }

    .account-list-row > strong {
        font-size: .74rem;
    }

    .pro-header {
        grid-template-columns: minmax(0, 1fr) auto;
        gap: 14px;
    }

    .pro-header h1 {
        font-size: 1.3rem;
    }

    .pro-company-card,
    .pro-verification-card {
        grid-template-columns: 54px minmax(0, 1fr) auto;
        padding: 18px;
    }

    .pro-company-card > a {
        grid-column: auto;
        justify-self: end;
    }

    .pro-steps {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    .pro-form-card {
        padding: 22px;
    }
}

@media (min-width: 1180px) {
    .account-layout {
        grid-template-columns: 240px minmax(0, 1fr);
    }

    .account-dashboard {
        max-width: 1180px;
    }
}

@media (orientation: landscape) and (max-height: 520px) {
    .account-layout {
        gap: var(--space-3);
    }

    .side-nav {
        padding: 6px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .auth-professional-signup__steps .is-current span {
        animation: none;
    }
}

/* Compact professional account home. Shared primitives live under account-pro-* so
   the same metric, task and quick-link components can be reused by the pro portal. */
.account-page--professional {
    background: #FBF8F2;
}

.account-page--professional .page-shell {
    padding-bottom: max(24px, env(safe-area-inset-bottom));
}

.account-page--professional .assistant-widget {
    display: none;
}

.account-layout--pro-home {
    display: block;
    width: 100%;
    max-width: none;
    margin: 0;
}

.account-layout--pro-home .account-sidebar {
    display: none;
}

.account-pro-portal-shell {
    display: grid;
    width: min(100%, 1180px);
    min-width: 0;
    margin-inline: auto;
    gap: 14px;
    padding: 12px var(--account-page-x) 28px;
}

.account-pro-workspace-header {
    display: grid;
    min-width: 0;
    gap: 10px;
}

.account-pro-portal-content {
    min-width: 0;
}

.account-pro-portal-content > .account-dashboard {
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 0;
}

.pro-settings-groups {
    display: grid;
    min-width: 0;
    gap: 12px;
}

.pro-company-profile {
    min-width: 0;
}

.pro-company-profile__tabs {
    min-width: 0;
}

.pro-company-profile__tabs .account-segmented-nav a {
    padding-inline: 3px;
    font-size: .66rem;
}

.pro-company-profile-grid {
    display: grid;
    min-width: 0;
    gap: 12px;
}

.pro-company-profile-summary {
    display: grid;
    min-width: 0;
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 10px;
    align-content: start;
    padding: 14px;
    border: 1px solid var(--account-soft-line);
    border-radius: var(--account-card-radius);
    background: rgba(244, 249, 240, .62);
}

.pro-company-profile-summary__icon,
.pro-company-profile-row__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background: rgba(36, 90, 59, .1);
    color: var(--brand);
}

.pro-company-profile-summary__icon {
    width: 42px;
    height: 42px;
}

.pro-company-profile-summary h2,
.pro-company-profile-section-head h2 {
    margin: 0;
    color: var(--text);
    font-size: 1rem;
    font-weight: 900;
    line-height: 1.12;
}

.pro-company-profile-summary > div:nth-child(2) > p:not(.pro-eyebrow),
.pro-company-profile-section-head p:not(.pro-eyebrow) {
    margin: 3px 0 0;
    color: #646C64;
    font-size: .7rem;
    font-weight: 620;
    line-height: 1.32;
}

.pro-company-profile-facts,
.pro-company-profile-readonly__grid {
    display: grid;
    min-width: 0;
    grid-column: 1 / -1;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 7px;
    margin: 4px 0 0;
}

.pro-company-profile-facts > div,
.pro-company-profile-readonly__grid > div {
    min-width: 0;
    padding: 9px;
    border-radius: 7px;
    background: rgba(255, 253, 247, .75);
}

.pro-company-profile-facts dt,
.pro-company-profile-readonly__grid dt {
    color: #737A73;
    font-size: .56rem;
    font-weight: 850;
    text-transform: uppercase;
}

.pro-company-profile-facts dd,
.pro-company-profile-readonly__grid dd {
    overflow-wrap: anywhere;
    margin: 3px 0 0;
    color: var(--text);
    font-size: .72rem;
    font-weight: 850;
    line-height: 1.25;
}

.pro-company-profile-summary__registry {
    display: flex;
    grid-column: 1 / -1;
    flex-wrap: wrap;
    gap: 4px 10px;
    margin: 0;
    color: #687068;
    font-size: .62rem;
    font-weight: 650;
}

.pro-company-profile-summary__registry a,
.pro-company-profile-section-head > a {
    color: var(--brand);
    font-weight: 850;
}

.pro-company-profile-section,
.pro-company-profile-readonly {
    display: grid;
    min-width: 0;
    gap: 12px;
}

.pro-company-profile-readonly {
    padding: 16px;
}

.pro-company-profile-section-head {
    display: grid;
    min-width: 0;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 10px;
    align-items: end;
}

.pro-company-profile-section-head > a {
    font-size: .68rem;
    white-space: nowrap;
}

.pro-company-profile-form-grid {
    display: grid;
    min-width: 0;
    gap: 12px;
}

.pro-company-profile-list {
    display: grid;
    min-width: 0;
    overflow: hidden;
    border: 1px solid var(--account-soft-line);
    border-radius: var(--account-card-radius);
    background: rgba(255, 253, 247, .86);
    box-shadow: var(--account-soft-shadow);
}

.pro-company-profile-row {
    display: grid;
    min-width: 0;
    grid-template-columns: 38px minmax(0, 1fr) auto auto;
    gap: 10px;
    align-items: center;
    padding: 12px;
    border-top: 1px solid var(--account-soft-line);
    color: var(--text);
}

.pro-company-profile-row:first-child {
    border-top: 0;
}

.pro-company-profile-row--link:hover {
    background: rgba(244, 249, 240, .58);
    text-decoration: none;
}

.pro-company-profile-row__icon {
    width: 38px;
    height: 38px;
}

.pro-company-profile-row__body,
.pro-company-profile-row__meta {
    display: grid;
    min-width: 0;
    gap: 3px;
}

.pro-company-profile-row__title {
    display: flex;
    min-width: 0;
    flex-wrap: wrap;
    gap: 5px;
    align-items: center;
}

.pro-company-profile-row__title h3,
.pro-company-profile-row__title strong {
    overflow: hidden;
    margin: 0;
    font-size: .8rem;
    font-weight: 900;
    line-height: 1.18;
    text-overflow: ellipsis;
}

.pro-company-profile-row__title > span {
    padding: 3px 6px;
    border-radius: 6px;
    background: rgba(36, 90, 59, .1);
    color: var(--brand);
    font-size: .55rem;
    font-weight: 850;
}

.pro-company-profile-row__title > span.is-muted {
    background: rgba(47, 54, 53, .08);
    color: #6A716A;
}

.pro-company-profile-row__body > p,
.pro-company-profile-row__body > span:not(.pro-company-profile-row__title),
.pro-company-profile-row address {
    margin: 0;
    color: #687068;
    font-size: .65rem;
    font-style: normal;
    font-weight: 650;
    line-height: 1.28;
}

.pro-company-profile-row__body .is-warning {
    color: #A84F30;
}

.pro-company-profile-row__meta {
    justify-items: end;
    color: #687068;
    font-size: .6rem;
    font-weight: 750;
    text-align: right;
}

.pro-company-profile-row__meta a {
    color: var(--accent-strong);
    font-size: .66rem;
    font-weight: 900;
}

.pro-public-profile-editor {
    display: grid;
    min-width: 0;
    gap: 12px;
}

.pro-public-profile-preview {
    min-width: 0;
    overflow: hidden;
    border: 1px solid var(--account-soft-line);
    border-radius: var(--account-card-radius);
    background: rgba(255, 253, 247, .9);
    box-shadow: var(--account-soft-shadow);
}

.pro-public-profile-preview__media {
    position: relative;
    display: block;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: #E6ECE2;
}

.pro-public-profile-preview__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.pro-public-profile-preview__media > span {
    position: absolute;
    top: 10px;
    left: 10px;
    min-height: 26px;
    padding: 6px 9px;
    border-radius: 7px;
    background: rgba(255, 253, 247, .92);
    color: var(--brand);
    font-size: .62rem;
    font-weight: 900;
}

.pro-public-profile-preview__body {
    display: grid;
    gap: 7px;
    padding: 14px;
}

.pro-public-profile-preview__body h2 {
    margin: 0;
    font-size: 1.28rem;
    font-weight: 900;
    line-height: 1.08;
}

.pro-public-profile-preview__body > p:not(.pro-eyebrow),
.pro-public-profile-preview__body > small {
    margin: 0;
    color: #626A62;
    font-size: .75rem;
    font-weight: 620;
    line-height: 1.36;
}

.pro-public-profile-preview__tagline {
    color: var(--text) !important;
    font-weight: 820 !important;
}

.pro-public-profile-preview__body dl {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    margin: 4px 0 0;
}

.pro-public-profile-preview__body dl > div {
    min-width: 0;
    padding: 8px;
    border-radius: 7px;
    background: rgba(36, 90, 59, .07);
}

.pro-public-profile-preview__body dt {
    color: #6D756D;
    font-size: .58rem;
    font-weight: 800;
    text-transform: uppercase;
}

.pro-public-profile-preview__body dd {
    overflow: hidden;
    margin: 2px 0 0;
    font-size: .72rem;
    font-weight: 850;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.pro-public-profile-form-card {
    min-width: 0;
}

.pro-public-profile-form__section {
    min-width: 0;
    margin: 0;
    padding: 0 0 16px;
    border: 0;
    border-bottom: 1px solid var(--account-soft-line);
}

.pro-public-profile-form__section:last-of-type {
    padding-bottom: 0;
    border-bottom: 0;
}

.pro-public-profile-form__section legend {
    display: grid;
    width: 100%;
    gap: 2px;
    margin: 0 0 12px;
    padding: 0;
}

.pro-public-profile-form__section legend strong {
    color: var(--text);
    font-size: .9rem;
    font-weight: 900;
}

.pro-public-profile-form__section legend span {
    color: #687068;
    font-size: .68rem;
    font-weight: 600;
}

.pro-public-profile-form .form-section__fields {
    display: grid;
    min-width: 0;
    gap: 12px;
}

.pro-public-profile-form input[type="file"] {
    min-height: 44px;
    padding: 8px;
}

.account-pro-dashboard {
    width: min(100%, 1180px);
    gap: 14px;
    padding: 12px var(--account-page-x) 28px;
}

.account-pro-profile {
    display: grid;
    grid-template-columns: 48px minmax(0, 1fr) 40px;
    min-width: 0;
    align-items: center;
    gap: 10px;
    padding: 2px;
}

.account-pro-profile__avatar {
    display: inline-flex;
    width: 48px;
    height: 48px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #1F633F;
    color: #FFF;
    font-size: .96rem;
    font-weight: 900;
    letter-spacing: 0;
}

.account-pro-profile__identity {
    display: grid;
    min-width: 0;
    gap: 4px;
}

.account-pro-profile__identity h1,
.account-pro-profile__identity p {
    margin: 0;
}

.account-pro-profile__identity h1 {
    overflow: hidden;
    color: #20231F;
    font-size: 1.02rem;
    font-weight: 900;
    line-height: 1.08;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.account-pro-profile__identity p {
    display: flex;
    min-width: 0;
    align-items: center;
    gap: 6px;
    overflow: hidden;
    color: #5F665F;
    font-size: .7rem;
    font-weight: 680;
    line-height: 1.15;
    white-space: nowrap;
}

.account-pro-profile__identity p > span:first-child {
    overflow: hidden;
    text-overflow: ellipsis;
}

.account-pro-profile__status {
    display: inline-flex;
    flex: 0 0 auto;
    align-items: center;
    gap: 4px;
}

.account-pro-profile__status > span {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: currentColor;
}

.account-pro-profile__status--green {
    color: #1F633F;
}

.account-pro-profile__status--orange {
    color: #B65330;
}

.account-pro-profile__settings {
    display: inline-flex;
    width: 40px;
    height: 40px;
    align-items: center;
    justify-content: center;
    border: 1px solid transparent;
    border-radius: 8px;
    color: #20231F;
}

.account-pro-profile__settings:hover,
.account-pro-profile__settings:focus-visible {
    border-color: #E4D8C7;
    background: #FFFDF7;
    text-decoration: none;
}

.account-segmented-nav {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    overflow: hidden;
    border: 1px solid #E4D8C7;
    border-radius: 8px;
    background: #FFFDF7;
}

.account-segmented-nav a {
    position: relative;
    display: inline-flex;
    min-width: 0;
    min-height: 42px;
    align-items: center;
    justify-content: center;
    padding: 0 5px;
    color: #5F665F;
    font-size: .72rem;
    font-weight: 820;
    text-align: center;
    white-space: nowrap;
}

.account-segmented-nav a:hover {
    background: #F5F2EB;
    text-decoration: none;
}

.account-segmented-nav a.is-active {
    background: #F8FBF7;
    color: #1F633F;
}

.account-segmented-nav a.is-active::after {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    height: 3px;
    background: #1F633F;
    content: "";
}

.account-pro-onboarding {
    display: grid;
    min-width: 0;
    padding: 12px;
    gap: 10px;
    border: 1px solid #D8E3D4;
    border-radius: 8px;
    background: #F8FBF7;
}

.account-pro-onboarding__head {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 10px;
}

.account-pro-onboarding__head > span {
    display: grid;
    min-width: 0;
    gap: 2px;
}

.account-pro-onboarding__head small {
    color: #B65330;
    font-size: .62rem;
    font-weight: 900;
    text-transform: uppercase;
}

.account-pro-onboarding__head strong {
    overflow: hidden;
    color: #20231F;
    font-size: .9rem;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.account-pro-onboarding__head > b {
    color: #1F633F;
    font-size: 1rem;
}

.account-pro-onboarding__bar {
    height: 5px;
    overflow: hidden;
    border-radius: 5px;
    background: #DFE8DC;
}

.account-pro-onboarding__bar > span {
    display: block;
    height: 100%;
    border-radius: inherit;
    background: #1F633F;
}

.account-pro-onboarding__steps {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 5px;
}

.account-pro-onboarding__step {
    display: grid;
    grid-template-columns: 16px minmax(0, 1fr);
    min-width: 0;
    align-items: center;
    gap: 5px;
    padding: 6px;
    border: 1px solid #E4D8C7;
    border-radius: 6px;
    background: #FFFDF7;
    color: #4F574F;
    font-size: .62rem;
    font-weight: 760;
    text-decoration: none;
}

.account-pro-onboarding__step > span {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.account-pro-onboarding__step .ui-icon {
    color: #A6ADA6;
}

.account-pro-onboarding__step.is-done {
    border-color: #D8E3D4;
    background: #EEF3EB;
    color: #1F633F;
}

.account-pro-onboarding__step.is-done .ui-icon {
    color: #1F633F;
}

.account-pro-activity,
.account-pro-section {
    display: grid;
    min-width: 0;
    gap: 8px;
}

.account-pro-action-head,
.account-pro-section__head {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    min-width: 0;
    align-items: center;
    gap: 10px;
}

.account-pro-action-head h2,
.account-pro-section__head h2 {
    margin: 0;
    color: #20231F;
    font-weight: 900;
    letter-spacing: 0;
    line-height: 1.08;
}

.account-pro-action-head h2 {
    font-size: 1.08rem;
}

.account-pro-section__head h2 {
    font-size: .92rem;
}

.account-pro-primary-action {
    display: inline-flex;
    min-height: 40px;
    align-items: center;
    justify-content: center;
    gap: 7px;
    padding: 0 12px;
    border-radius: 8px;
    background: #D45F35;
    color: #FFF;
    font-size: .74rem;
    font-weight: 900;
    line-height: 1;
    white-space: nowrap;
}

.account-pro-primary-action:hover {
    background: #B65330;
    color: #FFF;
    text-decoration: none;
}

.account-pro-metrics {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    overflow: hidden;
    border: 1px solid #E4D8C7;
    border-radius: 8px;
    background: #FFFDF7;
}

.account-pro-metric {
    display: grid;
    min-width: 0;
    min-height: 68px;
    align-content: center;
    gap: 3px;
    padding: 9px 11px;
    border-top: 1px solid #E4D8C7;
    color: #20231F;
}

.account-pro-metric:nth-child(-n + 2) {
    border-top: 0;
}

.account-pro-metric:nth-child(2n) {
    border-left: 1px solid #E4D8C7;
}

.account-pro-metric:hover {
    background: #F8FBF7;
    text-decoration: none;
}

.account-pro-metric strong {
    overflow: hidden;
    color: #1F633F;
    font-size: 1.35rem;
    font-weight: 900;
    line-height: 1;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.account-pro-metric span {
    color: #4F574F;
    font-size: .66rem;
    font-weight: 740;
    line-height: 1.12;
}

.account-pro-dashboard__lower {
    display: grid;
    min-width: 0;
    gap: 14px;
}

.account-pro-section__head > a {
    display: inline-flex;
    min-height: 30px;
    align-items: center;
    gap: 5px;
    color: #1F633F;
    font-size: .68rem;
    font-weight: 850;
    white-space: nowrap;
}

.account-pro-section__head > a:hover {
    color: #164A2E;
    text-decoration: none;
}

.account-pro-task-list {
    display: grid;
    overflow: hidden;
    border: 1px solid #E4D8C7;
    border-radius: 8px;
    background: #FFFDF7;
}

.account-pro-task {
    display: grid;
    grid-template-columns: 34px minmax(0, 1fr) auto 14px;
    min-width: 0;
    min-height: 60px;
    align-items: center;
    gap: 8px;
    padding: 8px 10px;
    border-top: 1px solid #E4D8C7;
    color: #20231F;
}

.account-pro-task:first-child {
    border-top: 0;
}

.account-pro-task:hover {
    background: #F8FBF7;
    text-decoration: none;
}

.account-pro-task__icon {
    display: inline-flex;
    width: 34px;
    height: 34px;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background: #EAF1E8;
    color: #1F633F;
}

.account-pro-task__copy {
    display: grid;
    min-width: 0;
    gap: 3px;
}

.account-pro-task__copy strong,
.account-pro-task__copy small {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.account-pro-task__copy strong {
    font-size: .76rem;
    font-weight: 880;
    line-height: 1.1;
}

.account-pro-task__copy small {
    color: #636A63;
    font-size: .62rem;
    font-weight: 650;
    line-height: 1.1;
}

.account-pro-task__status {
    display: inline-flex;
    min-height: 26px;
    align-items: center;
    padding: 0 7px;
    border: 1px solid currentColor;
    border-radius: 7px;
    font-size: .58rem;
    font-weight: 850;
    white-space: nowrap;
}

.account-pro-task__status--orange {
    background: #FFF8F3;
    color: #C55A33;
}

.account-pro-task__status--green {
    background: #F1F7EF;
    color: #1F633F;
}

.account-pro-empty {
    display: grid;
    grid-template-columns: 32px minmax(0, 1fr);
    min-height: 60px;
    align-items: center;
    gap: 9px;
    padding: 9px 11px;
    border: 1px solid #E4D8C7;
    border-radius: 8px;
    background: #FFFDF7;
    color: #1F633F;
}

.account-pro-empty > span {
    display: grid;
    gap: 2px;
}

.account-pro-empty strong {
    color: #20231F;
    font-size: .74rem;
}

.account-pro-empty small {
    color: #636A63;
    font-size: .62rem;
}

.account-pro-quick-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
}

.account-pro-quick-link {
    display: grid;
    grid-template-columns: 24px minmax(0, 1fr) 14px;
    min-width: 0;
    min-height: 50px;
    align-items: center;
    gap: 6px;
    padding: 7px 9px;
    border: 1px solid #E4D8C7;
    border-radius: 8px;
    background: #FFFDF7;
    color: #20231F;
}

.account-pro-quick-link:hover {
    border-color: #C8D6C5;
    background: #F8FBF7;
    color: #1F633F;
    text-decoration: none;
}

.account-pro-quick-link > .ui-icon:first-child {
    color: #1F633F;
}

.account-pro-quick-link > span {
    overflow: hidden;
    font-size: .68rem;
    font-weight: 820;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.account-pro-quick-link--wide {
    grid-column: 1 / -1;
}

.account-pro-dashboard > .account-dashboard__logout {
    margin-top: 2px;
}

@media (min-width: 560px) {
    .account-pro-portal-shell {
        padding-inline: 18px;
    }

    .pro-settings-groups {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        align-items: start;
    }

    .pro-company-profile__tabs .account-segmented-nav a {
        font-size: .72rem;
    }

    .pro-company-profile > .pro-header {
        grid-template-columns: minmax(0, 1fr) auto;
        gap: 14px;
    }

    .pro-company-profile-facts,
    .pro-company-profile-readonly__grid,
    .pro-company-profile-form-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .account-pro-dashboard {
        padding-inline: 18px;
    }

    .account-pro-metrics {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    .account-pro-metric {
        border-top: 0;
        border-left: 1px solid #E4D8C7;
    }

    .account-pro-metric:first-child {
        border-left: 0;
    }
}

@media (min-width: 860px) {
    .account-pro-portal-shell {
        gap: 18px;
        padding: 20px clamp(24px, 4vw, 48px) 40px;
    }

    .account-pro-workspace-header {
        gap: 12px;
    }

    .pro-settings-groups {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 14px;
    }

    .pro-company-profile-grid {
        grid-template-columns: minmax(260px, .72fr) minmax(0, 1.45fr);
        align-items: start;
        gap: 18px;
    }

    .pro-company-profile-summary {
        position: sticky;
        top: 20px;
    }

    .pro-company-profile-facts {
        grid-template-columns: 1fr;
    }

    .pro-public-profile-editor {
        grid-template-columns: minmax(250px, .72fr) minmax(0, 1.45fr);
        align-items: start;
        gap: 18px;
    }

    .pro-public-profile-preview {
        position: sticky;
        top: 20px;
    }

    .pro-public-profile-form .form-section__fields {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .pro-public-profile-form .form-field:has(textarea),
    .pro-public-profile-form .form-field:has(input[type="file"]) {
        grid-column: 1 / -1;
    }

    .account-pro-dashboard {
        gap: 18px;
        padding: 20px clamp(24px, 4vw, 48px) 40px;
    }

    .account-pro-profile {
        grid-template-columns: 52px minmax(0, 1fr) 42px;
    }

    .account-pro-profile__avatar {
        width: 52px;
        height: 52px;
    }

    .account-pro-profile__identity h1 {
        font-size: 1.16rem;
    }

    .account-pro-onboarding__steps {
        grid-template-columns: repeat(5, minmax(0, 1fr));
    }

    .account-segmented-nav a {
        min-height: 46px;
        font-size: .78rem;
    }

    .account-pro-action-head h2 {
        font-size: 1.2rem;
    }

    .account-pro-primary-action {
        min-height: 42px;
        padding-inline: 16px;
        font-size: .8rem;
    }

    .account-pro-metric {
        min-height: 78px;
        padding-inline: 14px;
    }

    .account-pro-metric strong {
        font-size: 1.5rem;
    }

    .account-pro-dashboard__lower {
        grid-template-columns: minmax(0, 1.35fr) minmax(300px, .85fr);
        align-items: start;
        gap: 18px;
    }

    .account-pro-task {
        min-height: 66px;
    }

    .account-pro-dashboard > .account-dashboard__logout {
        justify-self: end;
    }
}

@media (max-width: 350px) {
    .account-pro-portal-shell {
        --account-page-x: 8px;
    }

    .account-pro-dashboard {
        --account-page-x: 8px;
    }

    .account-pro-profile {
        grid-template-columns: 44px minmax(0, 1fr) 36px;
        gap: 7px;
    }

    .account-pro-profile__avatar {
        width: 44px;
        height: 44px;
    }

    .account-pro-action-head {
        gap: 6px;
    }

    .account-pro-primary-action {
        padding-inline: 9px;
        font-size: .68rem;
    }

    .account-pro-task {
        grid-template-columns: 32px minmax(0, 1fr) auto 12px;
        gap: 6px;
        padding-inline: 8px;
    }

    .account-pro-task__icon {
        width: 32px;
        height: 32px;
    }

    .account-pro-task__status {
        padding-inline: 5px;
        font-size: .54rem;
    }

    .account-pro-quick-link {
        grid-template-columns: 22px minmax(0, 1fr) 12px;
        gap: 4px;
        padding-inline: 7px;
    }

    .account-pro-quick-link > span {
        font-size: .62rem;
    }
}
